home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
SOLAR
/
Vector Processors
/
Slice
/
subrange
< prev
Wrap
Text File
|
1998-10-23
|
214b
|
8 lines
subrange from n sequence
Returns a subrange of a sequence starting from given position n elements long. Works with vectors and lists.
(subrange 1 2 '(1 2 3 4 5))
--> (2 3)
(subrange 1 2 '#(1 2 3 4 5))
--> #(2 3)